home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 12 / Cream of the Crop 12 (Part II) / Cream of the Crop 12 (Part II).iso / OS2 / VD08SMP.ZIP / usr / samples / gnuplot / makefile.preamble < prev    next >
Encoding:
Makefile  |  1996-02-13  |  311 b   |  27 lines

  1. CC = gcc
  2. CPP = $(CC) -E
  3. AR = ar
  4. MAKE = gmake
  5. TOUCH = touch
  6. STRIP = emxbind -s
  7.  
  8. RC = rc -r
  9.  
  10. OBJ = .o
  11. EXE = .exe
  12. LIB = .a
  13.  
  14. CFLAGS = -O2
  15. LDFLAGS = -L. -lobjc -los2
  16.  
  17. .SUFFIXES: .h .m .c .rc .res $(OBJ) $(EXE)
  18.  
  19. .c.o:
  20.     $(CC) -c $(CFLAGS) $<
  21.  
  22. .m.o:
  23.     $(CC) -c $(CFLAGS) $<
  24.  
  25. .rc.res:
  26.     $(RC) $<
  27.